home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / CRS / crs53.d81 / 28may87s.pma / MODEBAUD.LIB < prev    next >
Text File  |  1979-12-31  |  1KB  |  33 lines

  1.     ; equates for mode byte bit fields
  2.  
  3. mb$input        equ 0000$0001b    ; device may do input
  4. mb$output        equ 0000$0010b    ; device may do output
  5. mb$in$out        equ mb$input+mb$output
  6.  
  7. mb$soft$baud        equ 0000$0100b    ; software selectable
  8.                     ; baud rates
  9.  
  10. mb$serial        equ 0000$1000b    ; device may use protocol
  11. mb$xon$xoff        equ 0001$0000b    ; XON/XOFF protocol
  12.                     ; enabled
  13.  
  14. baud$none        equ 0        ; no baud rate associated
  15.                     ; with this device
  16. baud$50            equ 1        ; 50 baud
  17. baud$75            equ 2        ; 75 baud
  18. baud$110        equ 3        ; 110 baud
  19. baud$134        equ 4        ; 134.5 baud
  20. baud$150        equ 5        ; 150 baud
  21. baud$300        equ 6        ; 300 baud
  22. baud$600        equ 7        ; 600 baud
  23. baud$1200        equ 8        ; 1200 baud
  24. baud$1800        equ 9        ; 1800 baud
  25. baud$2400        equ 10        ; 2400 baud
  26. baud$3600        equ 11        ; 3600 baud
  27. baud$4800        equ 12        ; 4800 baud
  28. baud$7200        equ 13        ; 7200 baud
  29. baud$9600        equ 14        ; 9600 baud
  30. baud$19200        equ 15        ; 19.2k baud
  31.  
  32.  
  33.